home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.5 Applications 1999 May
/
SGI IRIX 6.5 Applications 1999 May.iso
/
dist
/
nss_fasttrack.idb
/
var
/
netscape
/
fasttrack
/
httpd-%%HOSTNAME%%
/
stop.z
/
stop
Wrap
Text File
|
1998-10-13
|
426b
|
26 lines
#!/bin/sh
PID_FILE=/var/netscape/fasttrack/httpd-%%HOSTNAME%%/logs/pid
if test -f $PID_FILE ; then
kill `cat $PID_FILE`
if test $? -ne 0 ; then
exit 1
fi
else
echo server not running
exit 1
fi
loop_counter=1
max_count=30
while test $loop_counter -le $max_count; do
loop_counter=`expr $loop_counter + 1`
if test -f $PID_FILE ; then
sleep 2
else
exit 0
fi
done
echo server not responding to exit command
exit 1